home *** CD-ROM | disk | FTP | other *** search
- ;------------------------------------------------------------------------------
- ; .ss.
- ; `²²'
- ; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
- ; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
- ; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
- ; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
- ; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
- ; .sS²°$$$²²°"' d²°'
- ; .$$² .$$'
- ; $$$.,d$$'
- ; `²S$$S²'
- ;------------------------------------------------------------------------------
- ; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
- ;------------------------------------------------------------------------------
- ; PPE 1.OO (plain) - Analysis ON - Postprocessing ON
- ;------------------------------------------------------------------------------
-
- Integer INTEGER001
- Integer INTEGER002
- String TSTRING001(5)
- String TSTRING002(4)
- String STRING003
- String STRING004
- String STRING005
- String STRING006
-
- ;------------------------------------------------------------------------------
-
- STRING003 = "Y"
- TSTRING001(0) = " "
- TSTRING002(1) = " @X0E1. @X0FEvery call"
- TSTRING002(2) = " @X0E2. @X0FFrequently"
- TSTRING002(3) = " @X0E3. @X0FRarely "
- TSTRING002(4) = " @X0E4. @X0FNot at all"
- STRING004 = 4
- STRING005 = 4
- STRING006 = 4
- INTEGER001 = 1
- INTEGER002 = 72
- STRING003 = YesChar()
- PrintLn
- PrintLn "@X50▓▒░ @X5F Message Bases @X50 ░▒▓@X07"
- Gosub LABEL001
- InputStr "Which option best describes your use of the message bases on this system", STRING004, 10, 1, "1234", 2 + 128 + 256
- STRING004 = Right(TSTRING002(STRING004), 10)
- PrintLn
- PrintLn "@X50▓▒░ @X5F File Areas @X50 ░▒▓@X07"
- Gosub LABEL001
- InputStr "Which option best describes your use of the file areas on this system", STRING005, 10, 1, "1234", 2 + 128 + 256
- STRING005 = Right(TSTRING002(STRING005), 10)
- PrintLn
- PrintLn "@X50▓▒░ @X5F Other Features @X50 ░▒▓@X07"
- Gosub LABEL001
- InputStr "Which option best describes your use of the other features of this system", STRING006, 10, 1, "1234", 2 + 128 + 256
- STRING006 = Right(TSTRING002(STRING006), 10)
- Newlines 2
- InputYN "Do you want to leave additional comments about this system", STRING003, 10
- If (Upper(STRING003) == YesChar()) Then
- Newlines 2
- PrintLn "@X0B@X00You may enter @X0F5@XFF lines of @X0F", INTEGER002, "@XFF characters for your comments."
- PrintLn "Press ENTER on a blank line to finish entering your comments."
- PrintLn
- While ((INTEGER001 < 6) && (TSTRING001(INTEGER001 - 1) <> "")) Do
- Print "@X0E", INTEGER001, ": "
- InputStr "_", TSTRING001(INTEGER001), 3, INTEGER002, Mask_Ascii(), 512 + 256
- INTEGER001 = INTEGER001 + 1
- EndWhile
- Endif
- FPutLn 0, " "
- FPutLn 0, " Usage"
- FPutLn 0, " ----------------------------------------"
- FPutLn 0, " "
- FPutLn 0, " Message base : " + STRING004
- FPutLn 0, " File area : " + STRING005
- FPutLn 0, " Other features: " + STRING006
- FPutLn 0, " "
- FPutLn 0, " Comments"
- FPutLn 0, " -----------------------------------------"
- FPutLn 0, " " + TSTRING001(1)
- FPutLn 0, " " + TSTRING001(2)
- FPutLn 0, " " + TSTRING001(3)
- FPutLn 0, " " + TSTRING001(4)
- FPutLn 0, " " + TSTRING001(5)
- FPutLn 0, " "
- End
- :LABEL001
- PrintLn
- PrintLn TSTRING002(1)
- PrintLn TSTRING002(2)
- PrintLn TSTRING002(3)
- PrintLn TSTRING002(4)
- Return
-
- ;------------------------------------------------------------------------------
- ;
- ; Usage report (before postprocessing)
- ;
- ; ■ Statements used :
- ;
- ; 1 End
- ; 3 Goto
- ; 16 Let
- ; 1 Print
- ; 14 PrintLn
- ; 2 If
- ; 16 FPutLn
- ; 4 InputStr
- ; 1 InputYN
- ; 3 Gosub
- ; 1 Return
- ; 2 Newlines
- ;
- ;
- ; ■ Functions used :
- ;
- ; 16 +
- ; 1 -
- ; 1 ==
- ; 1 <>
- ; 1 <
- ; 2 !
- ; 1 &&
- ; 1 Upper()
- ; 3 Right()
- ; 2 YesChar()
- ; 1 Mask_Ascii()
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Analysis flags : No flag
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Postprocessing report
- ;
- ; 0 For/Next
- ; 1 While/EndWhile
- ; 1 If/Then or If/Then/Else
- ; 0 Select Case
- ;
- ;------------------------------------------------------------------------------
- ; AEGiS Corp - Break the routines, code against the machines!
- ;------------------------------------------------------------------------------
-